home *** CD-ROM | disk | FTP | other *** search
- 10 PRINT "This program is producing a 4000-word ASCII text file"
- 15 PRINT " named WPBENCH.DOC. This file is to be used for"
- 17 PRINT " benchmarking word processor programs"
- 19 PRINT
- 20 OPEN "b:wpbench.doc" FOR OUTPUT AS #1
- 30 A$=" One two three four five six seven eight nine ten."
- 40 FOR I=1 TO 40
- 60 PRINT #1, USING "##"; I;
- 70 PRINT#1, ".";
- 80 FOR J=1 TO 10
- 100 PRINT #1, A$;
- 120 NEXT J
- 140 PRINT#1, : PRINT#1,
- 160 NEXT I
- 180 PRINT#1, "end"
- 200 CLOSE
- 220 SYSTEM
- FOR J=1 TO 10
- 100 P